mirror of
https://github.com/appy-one/acebase-client.git
synced 2026-05-24 22:01:18 -06:00
20 lines
510 B
JSON
20 lines
510 B
JSON
{
|
|
"compilerOptions": {
|
|
"listEmittedFiles": true,
|
|
"rootDir": "./src",
|
|
"target": "es2020",
|
|
"module": "es2020",
|
|
"moduleResolution": "node",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"outDir": "./dist/esm",
|
|
"declarationDir": "./dist/types",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"skipLibCheck": true,
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist/**/*", "test/**/*"]
|
|
}
|