{
    //"extends": "../tsproject.json",
    "compilerOptions": {
        "declaration": true,
        "composite": true,
        "outDir": "./dist",
        "rootDir": "src",
        // 下面是公共的，应该从tsproject.json extends，但是会出错误。
        "module": "esnext",
        "moduleResolution": "node",
        "allowSyntheticDefaultImports": true,
        "preserveSymlinks": true,
        "target": "es6",
        "lib": ["es2016", "dom"],
        "sourceMap": true,
        "jsx": "react",
        "forceConsistentCasingInFileNames": true,
        "noImplicitReturns": false,
        "noImplicitThis": true,
        "noImplicitAny": false,
        "strictNullChecks": false,
        "suppressImplicitAnyIndexErrors": true,
        "noUnusedLocals": false,
        "experimentalDecorators": true,
        "baseUrl": ".",
        "skipLibCheck": true    
    },
    "references": [
        { "path": "../tonva-tools" },
        { "path": "../tonva-react-form" }
    ],
    "exclude": [
        "dist",
        "node_modules"
    ]
}
