mirror of
https://github.com/tabler/tabler.git
synced 2026-01-25 12:26:30 +00:00
31 lines
628 B
JSON
31 lines
628 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2015",
|
|
"module": "ES2020",
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"moduleResolution": "bundler",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": false,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"declaration": false,
|
|
"declarationMap": false,
|
|
"sourceMap": true,
|
|
"allowJs": true
|
|
},
|
|
"include": [
|
|
"js/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"**/*.test.ts",
|
|
"**/*.spec.ts"
|
|
]
|
|
}
|
|
|