34 lines
630 B
JSON
34 lines
630 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": [
|
|
"ES2021",
|
|
"ES2022.Object",
|
|
"dom"
|
|
],
|
|
"target": "ES6",
|
|
"module": "commonjs",
|
|
"allowJs": true,
|
|
"noImplicitAny": false,
|
|
"noImplicitThis": false,
|
|
"alwaysStrict": false,
|
|
"strictNullChecks": false,
|
|
"sourceMap": true,
|
|
"outDir": "./",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"pretty": true,
|
|
"baseUrl": "./src",
|
|
"rootDir": "./src",
|
|
"skipLibCheck": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": false
|
|
},
|
|
"filesGlob": [
|
|
"./src/**/*.ts"
|
|
],
|
|
"files": [
|
|
"./src/index.ts",
|
|
"./src/lib/index.ts",
|
|
"./src/main.ts"
|
|
]
|
|
} |