21 lines
408 B
JSON
21 lines
408 B
JSON
{
|
|
"extends": "../tsconfig/base.json",
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"lib": ["es2017", "dom"],
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"strict": false
|
|
},
|
|
"include": ["./src/**/*.ts"],
|
|
"exclude": [
|
|
"dist",
|
|
"build",
|
|
"node_modules",
|
|
"**/*.test.ts",
|
|
"**/*.test.tsx",
|
|
"**/__tests__/*"
|
|
]
|
|
}
|