Files
smartpreview/tsconfig.json

29 lines
623 B
JSON
Raw Permalink Normal View History

{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022", "DOM"],
"module": "ESNext",
"moduleResolution": "node",
"declaration": true,
"outDir": "./dist_ts/",
"rootDir": "./ts/",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": false,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"resolveJsonModule": true,
"allowJs": false
},
"include": [
"ts/**/*"
],
"exclude": [
"node_modules",
"dist_ts",
"dist_ts_web",
"test"
]
}