You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
475 B
22 lines
475 B
{
|
|
"compilerOptions": {
|
|
"target": "ES6",
|
|
"module": "ES6",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"declaration": true,
|
|
"declarationDir": "./dist/types",
|
|
"skipLibCheck": true,
|
|
"outDir": "./dist"
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.d.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|